home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / qdeck / help / hcle next >
Encoding:
Text File  |  1994-08-11  |  951 b   |  44 lines

  1. #
  2. # QOS Makefile for HC386 v3.x with DOS/4GX.
  3. #
  4.  
  5. all:  helpcall.exe ~\help\example.hlp
  6.  
  7. helpcall.exe:  hcle.tag link.rsp helpcall.obj
  8.     xglu E(helpcall) @link.rsp
  9.  
  10. helpcall.obj:      helpcall.c
  11.     hc386 helpcall.c   -c -DMSDOS
  12.  
  13. hcle.tag:
  14.     del *.tag
  15.     del *.obj
  16.     del *.map
  17.     del *.exp
  18.     del *.exe
  19.     del *.rsp
  20.     echo >hcle.tag
  21.  
  22. link.rsp: hcle
  23.     echo helpcall.obj      >  link.rsp
  24.     echo sys.lib           >> link.rsp
  25.     echo hc386.lib         >> link.rsp
  26.     echo hcsoft.lib        >> link.rsp
  27.     echo hcna.lib          >> link.rsp
  28.     echo -format lin       >> link.rsp
  29.     echo -auto             >> link.rsp
  30.     echo -farcall          >> link.rsp
  31.     echo -heapsize 1       >> link.rsp
  32.     echo -nod              >> link.rsp
  33.     echo -noignore         >> link.rsp
  34.     echo -dosseg           >> link.rsp
  35.     echo -stack 30000      >> link.rsp
  36.  
  37. ~\help\example.hlp:
  38.     cd .\example
  39.     helplib @example.rsp
  40.     copy example.hlp ~\help\.
  41.     del example.hlp
  42.     cd ..
  43.  
  44.